Contacts etc which are standard objects
```
Contacts (Standard Objects)
{% set contacts = crm_objects("contact", "limit=10") %}
{% if contacts.total %}
Email |
First Name |
Last Name |
Lead Status |
Marketing Contact Status |
Contact Owner |
Date |
{% for contact in contacts.results %}
{{ contact }}
{{ contact.email }} |
{{ contact.firstname }} |
{{ contact.lastname }} |
{{ contact.hs_lead_status }} |
{{ contact.marketing_contact_status }} |
{{ contact.hs_contact_owner }} |
{{ contact.createdate }} |
{% endfor %}
```
---
If you output each contact instead of each property, your example output could be:
```
{firstname=Maria, createdate=3/18/24, id=1, email=emailmaria@hubspot.com, lastname=Johnson (Sample Contact)}
{firstname=Brian, createdate=3/18/24, id=51, email=bh@hubspot.com, lastname=Halligan (Sample Contact)}
{firstname=Ethan, createdate=5/8/24, id=19693403216, email=ethan.morris@example.com, lastname=Morris}
{firstname=Olivia, createdate=5/8/24, id=19693404844, email=olivia.thompson@example.com, lastname=Thompson}
{firstname=Liam, createdate=5/8/24, id=19697904384, lastname=Jenkins}
{firstname=Marco, createdate=5/8/24, id=19697904704, email=marco.rossi@example.com, lastname=Rossi}
{firstname=Theo, createdate=5/8/24, id=19697905072, email=theo.wallace@example.com, lastname=Wallace}
{firstname=Victor, createdate=5/8/24, id=19697905184, email=victor.chen@example.com, lastname=Chen}
{firstname=Ava, createdate=5/8/24, id=19697905502, email=ava.kim@example.com, lastname=Kim}
```